⚠️⚠️⚠️ SIMO does not support command syntax at this moment. Instead, users should use function syntax.
In MATLAB, command syntax is supported for calling functions. For example, if one wants to hold a plot in MATLAB, both hold(‘on’) and hold on can be used. They are called function syntax and command syntax, respectively.
Command syntax has the following general form:
fun_name arg1 arg2 ... argn
All of the input arguments are expected to be character arrays. Hence, command syntax should only be used for functions that accept character arrays only.